73d8efde70ac85a1ef2acd201d00b656c95cd110,src-components/org/opencms/util/ant/CmsAntTaskSyncManifest.java,CmsAntTaskSyncManifest,getType,#String#,347

Before Change


        if (destination.endsWith(".jpg") || destination.endsWith(".gif") || destination.endsWith(".png")) {
            return "image";
        }
        if (destination.endsWith(".jar") || destination.endsWith(".class")) {
            return "binary";
        }
        if (destination.endsWith(".jsp")) {

After Change


            return "image";
        }
        // use binary type for GWT specific files (*.cache.html, hosted.html, *.nocache.js, *.rpc) to avoid their content being indexed or editable
        if (destination.endsWith(".jar")
            || destination.endsWith(".class")
            || destination.endsWith(".cache.html")
            || destination.endsWith("hosted.html")
            || destination.endsWith(".nocache.js")
            || destination.endsWith(".rpc")) {
            return "binary";
        }